home *** CD-ROM | disk | FTP | other *** search
/ Windows 95 API Bible / Windows 95 API Bible 3 Disc Set.iso / Win32 API Bible Book 2 of 3.iso / chapter9 / hdrdel.c < prev    next >
C/C++ Source or Header  |  1996-03-06  |  7KB  |  236 lines

  1.  
  2. #include <windows.h>  
  3. #include <commctrl.h>
  4. #include "hdrdel.h"  
  5.  
  6.  
  7. #if defined (WIN32)
  8.     #define IS_WIN32 TRUE
  9. #else
  10.     #define IS_WIN32 FALSE
  11. #endif
  12.  
  13. #define IS_NT      IS_WIN32 && (BOOL)(GetVersion() < 0x80000000)
  14. #define IS_WIN32S  IS_WIN32 && (BOOL)(!(IS_NT) && (LOBYTE(LOWORD(GetVersion()))<4))
  15. #define IS_WIN95   (BOOL)(!(IS_NT) && !(IS_WIN32S)) && IS_WIN32
  16.  
  17. HINSTANCE hInst;   // current instance
  18.  
  19. LPCTSTR lpszAppName = "MyApp";
  20. LPCTSTR lpszTitle   = "Header_DeleteItem"; 
  21.  
  22.  
  23. BOOL RegisterWin95( CONST WNDCLASS* lpwc );
  24.  
  25.  
  26. int APIENTRY WinMain( HINSTANCE hInstance, HINSTANCE hPrevInstance,
  27.                       LPTSTR lpCmdLine, int nCmdShow)
  28. {
  29.    MSG      msg;
  30.    HWND     hWnd; 
  31.    WNDCLASS wc;
  32.  
  33.    wc.style         = CS_HREDRAW | CS_VREDRAW;
  34.    wc.lpfnWndProc   = (WNDPROC)WndProc;       
  35.    wc.cbClsExtra    = 0;                      
  36.    wc.cbWndExtra    = 0;                      
  37.    wc.hInstance     = hInstance;              
  38.    wc.hIcon         = LoadIcon (hInstance, lpszAppName); 
  39.    wc.hCursor       = LoadCursor(NULL, IDC_ARROW);
  40.    wc.hbrBackground = (HBRUSH)(COLOR_WINDOW+1);
  41.    wc.lpszMenuName  = lpszAppName;              
  42.    wc.lpszClassName = lpszAppName;              
  43.  
  44.    if ( IS_WIN95 )
  45.    {
  46.       if ( !RegisterWin95( &wc ) )
  47.          return( FALSE );
  48.    }
  49.    else if ( !RegisterClass( &wc ) )
  50.       return( FALSE );
  51.  
  52.    hInst = hInstance; 
  53.  
  54.    hWnd = CreateWindow( lpszAppName, 
  55.                         lpszTitle,    
  56.                         WS_OVERLAPPEDWINDOW, 
  57.                         CW_USEDEFAULT, 0, 
  58.                         CW_USEDEFAULT, 0,  
  59.                         NULL,              
  60.                         NULL,              
  61.                         hInstance,         
  62.                         NULL               
  63.                       );
  64.  
  65.    if ( !hWnd ) 
  66.       return( FALSE );
  67.  
  68.    ShowWindow( hWnd, nCmdShow ); 
  69.    UpdateWindow( hWnd );         
  70.  
  71.    while( GetMessage( &msg, NULL, 0, 0) )   
  72.    {
  73.       TranslateMessage( &msg ); 
  74.       DispatchMessage( &msg );  
  75.    }
  76.  
  77.    return( msg.wParam ); 
  78. }
  79.  
  80.  
  81. BOOL RegisterWin95( CONST WNDCLASS* lpwc )
  82. {
  83.    WNDCLASSEX wcex;
  84.  
  85.    wcex.style         = lpwc->style;
  86.    wcex.lpfnWndProc   = lpwc->lpfnWndProc;
  87.    wcex.cbClsExtra    = lpwc->cbClsExtra;
  88.    wcex.cbWndExtra    = lpwc->cbWndExtra;
  89.    wcex.hInstance     = lpwc->hInstance;
  90.    wcex.hIcon         = lpwc->hIcon;
  91.    wcex.hCursor       = lpwc->hCursor;
  92.    wcex.hbrBackground = lpwc->hbrBackground;
  93.    wcex.lpszMenuName  = lpwc->lpszMenuName;
  94.    wcex.lpszClassName = lpwc->lpszClassName;
  95.  
  96.    // Added elements for Windows 95.
  97.    //...............................
  98.    wcex.cbSize = sizeof(WNDCLASSEX);
  99.    wcex.hIconSm = LoadImage(wcex.hInstance, lpwc->lpszClassName, 
  100.                             IMAGE_ICON, 16, 16,
  101.                             LR_DEFAULTCOLOR );
  102.             
  103.    return RegisterClassEx( &wcex );
  104. }
  105.  
  106. int GetColumnOffs( HWND hHeader, int nColNum )
  107. {
  108.    HD_ITEM hi;
  109.    int     i;
  110.    int     x = 0;
  111.  
  112.    hi.mask = HDI_WIDTH;
  113.  
  114.    // Calculate the column position.
  115.    //...............................
  116.    for( i=0; i<nColNum; i++ )
  117.    {
  118.       Header_GetItem( hHeader, i, &hi );
  119.       x += hi.cxy;
  120.    }
  121.  
  122.    return( x );
  123. }
  124.  
  125. LRESULT CALLBACK WndProc( HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam )
  126. {
  127. static HD_LAYOUT hl;
  128. static WINDOWPOS wp;
  129. static RECT      rc;
  130. static HWND      hHeader = NULL;
  131.  
  132.    switch( uMsg )
  133.    {
  134.       case WM_CREATE :
  135.               InitCommonControls();
  136.  
  137.               // Create the header control.
  138.               //...........................
  139.               hHeader = CreateWindowEx( 0, WC_HEADER, "",
  140.                                         WS_CHILD | WS_VISIBLE |
  141.                                         HDS_BUTTONS,
  142.                                         0, 0, 10, 10, hWnd, 
  143.                                         (HMENU)1, hInst, NULL );
  144.  
  145.               // Initialize the HD_LAYOUT members.
  146.               //..................................
  147.               hl.pwpos = ℘
  148.               hl.prc   = &rc;
  149.               break;
  150.  
  151.       case WM_SIZE :
  152.               rc.top    = 0;
  153.               rc.left   = 0;
  154.               rc.right  = LOWORD( lParam );
  155.               rc.bottom = HIWORD( lParam );
  156.  
  157.               Header_Layout( hHeader, &hl );
  158.               SetWindowPos( hHeader, hWnd, wp.x, wp.y, wp.cx, wp.cy, wp.flags ); 
  159.               break;
  160.  
  161.  
  162.       case WM_COMMAND :
  163.               switch( LOWORD( wParam ) )
  164.               {
  165.                  case IDM_INSERT :
  166.                         {
  167.                            char    szTitle[32];
  168.                            HD_ITEM hi;
  169.  
  170.                            SendMessage( hHeader, WM_SETFONT, 
  171.                                         (WPARAM)GetStockObject( DEFAULT_GUI_FONT ), 0 );
  172.  
  173.                            wsprintf( szTitle, "Column %d", 
  174.                                      Header_GetItemCount( hHeader )+1 );
  175.  
  176.                            hi.mask    = HDI_FORMAT | HDI_TEXT | HDI_WIDTH;
  177.                            hi.pszText = (LPTSTR)szTitle;
  178.                            hi.fmt     = HDF_STRING;
  179.                            hi.cxy     = 100;
  180.        
  181.                            Header_InsertItem( hHeader, 
  182.                                               Header_GetItemCount( hHeader ),
  183.                                               (LPARAM)&hi ); 
  184.                         }
  185.                         break;
  186.  
  187.                  case IDM_DELETE :
  188.                         Header_DeleteItem( hHeader, 
  189.                                            Header_GetItemCount( hHeader )-1 );
  190.                         break;
  191.  
  192.                  case IDM_ABOUT :
  193.                         DialogBox( hInst, "AboutBox", hWnd, (DLGPROC)About );
  194.                         break;
  195.  
  196.                  case IDM_EXIT :
  197.                         DestroyWindow( hWnd );
  198.                         break;
  199.               }
  200.               break;
  201.       
  202.       case WM_DESTROY :
  203.               PostQuitMessage(0);
  204.               break;
  205.  
  206.       default :
  207.             return( DefWindowProc( hWnd, uMsg, wParam, lParam ) );
  208.    }
  209.  
  210.    return( 0L );
  211. }
  212.  
  213.  
  214. LRESULT CALLBACK About( HWND hDlg,           
  215.                         UINT message,        
  216.                         WPARAM wParam,       
  217.                         LPARAM lParam)
  218. {
  219.    switch (message) 
  220.    {
  221.        case WM_INITDIALOG: 
  222.                return (TRUE);
  223.  
  224.        case WM_COMMAND:                              
  225.                if (   LOWORD(wParam) == IDOK         
  226.                    || LOWORD(wParam) == IDCANCEL)    
  227.                {
  228.                        EndDialog(hDlg, TRUE);        
  229.                        return (TRUE);
  230.                }
  231.                break;
  232.    }
  233.  
  234.    return (FALSE); 
  235. }
  236.